home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / wtj009.zip / CPP_DLL.ZIP / HELLOLIB.H < prev    next >
C/C++ Source or Header  |  1992-08-17  |  273b  |  14 lines

  1. // hellolib.h RHS 7/15/92
  2.  
  3. // define EXPORT as _export for either BC++3.1 or MSC++7.0
  4. // when compiling the DLL
  5. #if defined(_WINDLL) || (__DLL__)
  6. #define EXPORT _export
  7. #else
  8. #define EXPORT
  9. #endif
  10.  
  11. extern void FAR PASCAL EXPORT HelloMessage(LPSTR wintitle);
  12.  
  13.  
  14.